home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España 24 / MacFormat n. 24 (Spain) / MacFormat 24.bin / Demos / Jungle Activated! / JungleActivated Demo / jung DEMO d / 00132_Artist Track Selection.ls < prev    next >
Encoding:
Text File  |  1996-10-14  |  487 b   |  18 lines

  1. on mouseUp
  2.   global gBackgroundSound
  3.   set ArtistClick to the clickOn
  4.   if ArtistClick = gBackgroundSound then
  5.     exit
  6.   end if
  7.   set gBackgroundSound to the clickOn
  8.   repeat with i = 7 to 19
  9.     puppetSprite(i, 1)
  10.     set the foreColor of sprite i to 0
  11.     set the ink of sprite i to 36
  12.   end repeat
  13.   set the foreColor of sprite gBackgroundSound to 226
  14.   set the ink of sprite gBackgroundSound to 0
  15.   updateStage()
  16.   sound playFile 2, getpn() & "Sounds:Bckgrd" & gBackgroundSound
  17. end
  18.